GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 36194c...3c18d9 )
by Benjamin
01:42
created

pager.js ➔ pager   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 20

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
c 0
b 0
f 0
nc 3
dl 0
loc 20
rs 9.2
nop 2
1
import { fromJS } from 'immutable';
2
3
import {
4
    PAGE_LOCAL,
5
    PAGE_REMOTE
6
} from '../../../constants/ActionTypes';
7
8
import { generateLastUpdate } from './../../../util/lastUpdate';
9
10
import
11
    handleActions
12
from './../../../util/handleActions';
13
14
import {
15
    pageLocal,
16
    pageRemote
17
} from './../../actionHelpers/plugins/pager';
18
19
const initialState = fromJS({ lastUpdate: generateLastUpdate() });
20
21
export default handleActions({
22
    [PAGE_LOCAL]: pageLocal,
23
    [PAGE_REMOTE]: pageRemote
24
}, initialState);
25